import * as React from "react" import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" import { Shell } from "@/components/shell" import { InformationButton } from "@/components/information/information-button" import { VendorFormStatusTable } from "@/components/form-data-stat/form-data-stat-table" import { useTranslation } from "@/i18n" interface edpProgressPageProps { params: Promise<{ lng: string }> } export default async function IndexPage(props: edpProgressPageProps) { const { lng } = await props.params const { t } = await useTranslation(lng, 'menu') return (

{t('menu.engineering_management.vendor_progress')}

} >
) }